| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582 |
- <template>
- <!-- 页面头部 -->
- <HomePageHead></HomePageHead>
- <!-- 导航栏 -->
- <HomePageNavigation></HomePageNavigation>
- <!-- 面包屑导航 -->
- <div class="breadcrumb">
- <div class="inner">
- <span class="location">您的位置:</span>
- <el-breadcrumb :separator-icon="ArrowRight">
- <el-breadcrumb-item>
- <NuxtLink to="/">首页</NuxtLink>
- </el-breadcrumb-item>
- <el-breadcrumb-item>
- {{ newsDetail.con_title }}
- </el-breadcrumb-item>
- </el-breadcrumb>
- </div>
- </div>
- <!-- 资讯列表 -->
- <div class="newsDetail">
- <div class="inner">
- <div class="innerLeft">
- <div class="leftBottomImg" v-if="newsDetail.con_title == '会员服务'">
- <img src="../../../public/index/hyfw.jpg" alt="">
- </div>
- <div class="leftBottomImg" v-if="newsDetail.con_title == '联系我们'">
- <img src="../../../public/index/lxwm.jpg" alt="">
- </div>
- <div class="leftBottomImg" v-if="newsDetail.con_title == '法制项目简介'">
- <img src="../../../public/index/xmwzjj.png" alt="">
- </div>
- <div class="leftBottomImg" v-if="newsDetail.con_title == '免责声明'">
- <img src="../../../public/index/mzsm.png" alt="">
- </div>
- <div class="leftBottom" v-html="newsDetail.content" v-if="newsDetail.content"></div>
- </div>
- <div class="innerRight">
- <ul>
- <li v-for="(item, index) in bottomMenu" :key="index">
- <NuxtLink v-if="item.type == 0" :to="`/about/${item.name_pinyin}/index.html`" :title="item.name"
- :class="item.id == pageId ? 'active' : ''">
- {{ item.name }}
- </NuxtLink>
- <NuxtLink v-else-if="item.type == 1" :to="`/about/${item.name_pinyin}/list-1.html`"
- :title="item.name" :class="item.id == pageId ? 'active' : ''">
- {{ item.name }}
- </NuxtLink>
- </li>
- </ul>
- </div>
- <div style="clear: both;"></div>
- </div>
- </div>
- <!-- 页面底部 -->
- <HomeFoot></HomeFoot>
- </template>
- <script setup>
- //1.页面依赖 start ---------------------------------------->
- import { ElBreadcrumb, ElBreadcrumbItem } from 'element-plus'
- import { ArrowRight } from '@element-plus/icons-vue'
- import { ref, onMounted } from 'vue';
- //获得跳转过来的id
- const route = useRoute();
- //获得当前的完整路径
- const fullPath = route.path;
- //拆分,取出来中间这一段,然后提取数字部分
- const segments = fullPath.split('/');
- const targetSegment = segments[2];
- //const numberPart = targetSegment.match(/\d+$/)?.[0];
- let articleId;
- let pageId;
- //通过导航路径反向查询导航id
- const getRouteId = await requestDataPromise('/web/getWebsiteRoute', {
- method: 'GET',
- query: {
- 'foot_pinyin': targetSegment,
- },
- });
- if (getRouteId.code == 200) {
- articleId = getRouteId.data.id;
- pageId = getRouteId.data.id;
- } else {
- // console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- // console.log("错误位置:通过url路径查询导航池id")
- // console.log("后端错误反馈:",getRouteId.message)
- // console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- //1.页面依赖 end ---------------------------------------->
- //2.页面数据 start ---------------------------------------->
- //广告列表
- const adList = ref([]);
- let adImg1 = ref([]);
- let adImg2 = ref([]);
- async function getAdData() {
- const adData = await requestDataPromise('/web/getWebsiteAdvertisement', { method: 'GET', query: { 'ad_tag': 'PAGE' } });
- adList.value = adData.data;
- if (adData.code == 200) {
- for (let item of adData.data) {
- if (item.ad_tag == 'PAGE_0001') {
- adImg1.value = item;
- }
- if (item.ad_tag == 'PAGE_0002') {
- adImg2.value = item;
- }
- }
- } else {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:获取详情页广告列表")
- console.log("后端错误反馈:", adData.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- }
- getAdData();
- const newsDetail = ref({})
- const bottomMenu = ref([]);
- async function getPageData() {
- const mkdata = await requestDataPromise('/web/getWebsiteFooterCategoryInfo', {
- method: 'GET',
- query: {
- 'fcat_id': articleId
- },
- });
- newsDetail.value = mkdata.data;
- }
- getPageData();
- async function getPageMenu() {
- const mkdata = await requestDataPromise('/web/getWebsiteFooterCategory', {
- method: 'GET',
- query: {},
- });
- bottomMenu.value = mkdata.data;
- }
- getPageMenu();
- //2.页面数据 end ---------------------------------------->
- //4.设置seo信息 start---------------------------------------->
- //4.1 设置seo信息
- const setData = await requestDataPromise('/web/getWebsiteFootInfo', {
- method: 'GET',
- query: {},
- });
- let seoTitle = setData.data.website_head.title;
- let seoDescription = setData.data.website_head.description;
- let seoKeywords = setData.data.website_head.keywords;
- let seoSuffix = setData.data.website_head.suffix;
- let seoName = setData.data.website_head.website_name;
- useSeoMeta({
- title: seoTitle + "_" + seoSuffix,
- meta: [
- { name: 'description', content: seoDescription + "_" + seoName + "_" + seoSuffix, tagPriority: 10 },
- { name: 'keywords', content: seoKeywords + "_" + seoName + "_" + seoSuffix, tagPriority: 10 }
- ]
- });
- //4.设置seo信息 end---------------------------------------->
- onMounted(async () => {
- //从客户端获取行政职能部门 加快打开速度
- const { $webUrl, $CwebUrl } = useNuxtApp();
- //广告1
- let url = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=snzxw_page_0001`
- const responseAd1 = await fetch(url, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd1 = await responseAd1.json();
- adImg1.value = resultAd1.data[0];
- //广告2
- let url2 = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=snzxw_page_0002`
- const responseAd2 = await fetch(url2, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd2 = await responseAd2.json();
- adImg2.value = resultAd2.data[0];
- })
- </script>
- <style lang="less" scoped>
- @media screen and (min-width: 1401px) {
- //导航条
- .breadcrumb {
- width: 100%;
- .inner {
- width: 1200PX;
- margin: 10PX auto;
- border-bottom: 1PX solid #E5E5E5;
- }
- .el-breadcrumb::v-deep {
- display: inline-block;
- vertical-align: -4PX;
- }
- .el-breadcrumb__inner a::v-deep,
- .el-breadcrumb__inner.is-link::v-deep {
- color: #666666;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- span {
- font-family: "宋体";
- font-weight: 400;
- font-size: 14PX;
- color: #666666;
- line-height: 40PX;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .location {
- margin-right: 10PX;
- display: inline-block;
- height: 40PX;
- line-height: 40PX;
- font-family: "宋体";
- font-weight: 400;
- font-size: 14PX;
- color: #666666;
- vertical-align: 11PX;
- }
- }
- // 资讯列表
- .newsDetail {
- width: 100%;
- margin-bottom: 70PX;
- .inner {
- width: 1200PX;
- font-size: 16PX;
- margin: 0 auto;
- .innerLeft {
- width: 980PX;
- float: right;
- margin-right: 0px;
- .LeftTop {
- margin-top: 50PX;
- >h1 {
- line-height: 40PX;
- margin-bottom: 30PX;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 30PX;
- color: #333333;
- }
- >p {
- height: 18PX;
- line-height: 18PX;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 14PX;
- color: #999999;
- span {
- margin-right: 40PX;
- }
- }
- >img {
- width: 680PX;
- height: 382PX;
- padding: 50PX 0PX 60PX 55PX;
- }
- }
- .leftBottomImg {
- width: 760PX;
- height: 184PX;
- margin: 0 auto;
- }
- .leftBottom {
- width: 92%;
- font-size: 20PX;
- padding-top: 40PX;
- margin: 0 auto;
- font-family: "微软雅黑", Microsoft YaHei;
- line-height: 36PX;
- >h3,
- >p {
- text-indent: 2em;
- width: 790PX;
- font-family: "微软雅黑", Microsoft YaHei;
- font-size: 20PX;
- color: #333333;
- line-height: 23PX;
- padding-bottom: 30PX;
- }
- >h3 {
- font-weight: 600PX;
- }
- >p {
- font-weight: 400;
- }
- }
- }
- .innerRight {
- width: 200PX;
- margin-top: 20PX;
- margin-left: 0px;
- font-family: "微软雅黑";
- ul {
- li {
- a {
- display: block;
- height: 50PX;
- line-height: 50PX;
- color: #000;
- background: #f3f3f3;
- font-size: 18PX;
- text-decoration: none;
- padding-left: 35PX;
- box-sizing: border-box;
- border-bottom: 1PX solid #fff;
- }
- }
- }
- .active {
- border-left: 0;
- background: #3395e4;
- color: #fff;
- }
- }
- }
- }
- }
- @media screen and (min-width: 801px) and (max-width: 1400px) {
- //导航条
- .breadcrumb {
- width: 100%;
- .inner {
- width: 90%;
- margin: 10PX auto;
- border-bottom: 1PX solid #E5E5E5;
- }
- .el-breadcrumb::v-deep {
- display: inline-block;
- vertical-align: -4PX;
- }
- .el-breadcrumb__inner a::v-deep,
- .el-breadcrumb__inner.is-link::v-deep {
- color: #666666;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- span {
- font-family: "宋体";
- font-weight: 400;
- font-size: 14PX;
- color: #666666;
- line-height: 40PX;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .location {
- margin-right: 10PX;
- display: inline-block;
- height: 40PX;
- line-height: 40PX;
- font-family: "宋体";
- font-weight: 400;
- font-size: 14PX;
- color: #666666;
- vertical-align: 11PX;
- }
- }
- // 资讯列表
- .newsDetail {
- width: 100%;
- margin-bottom: 70PX;
- .inner {
- width: 90%;
- margin: 0 auto;
- font-size: 16PX;
- .innerLeft {
- width: 75%;
- float: right;
- margin-right: 0px;
- .LeftTop {
- margin-top: 50PX;
- >h1 {
- line-height: 40PX;
- margin-bottom: 30PX;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 30PX;
- color: #333333;
- }
- >p {
- height: 18PX;
- line-height: 18PX;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 14PX;
- color: #999999;
- span {
- margin-right: 40PX;
- }
- }
- >img {
- width: 680PX;
- height: 382PX;
- padding: 50PX 0PX 60PX 55PX;
- }
- }
- .leftBottomImg {
- width: 100%;
- img {
- width: 100%;
- }
- }
- .leftBottom {
- width: 92%;
- font-size: 20PX;
- padding-top: 40PX;
- margin: 0 auto;
- font-family: "微软雅黑", Microsoft YaHei;
- line-height: 36PX;
- >h3,
- >p {
- text-indent: 2em;
- width: 100%;
- font-family: "微软雅黑", Microsoft YaHei;
- font-size: 20PX;
- color: #333333;
- line-height: 23PX;
- padding-bottom: 30PX;
- }
- >h3 {
- font-weight: 600;
- }
- >p {
- font-weight: 400;
- }
- }
- }
- .innerRight {
- width: 20%;
- margin-top: 20PX;
- margin-right: 20PX;
- font-family: "微软雅黑";
- ul {
- li {
- a {
- display: block;
- height: 50PX;
- line-height: 50PX;
- color: #000;
- background: #f3f3f3;
- font-size: 18PX;
- text-decoration: none;
- padding-left: 35PX;
- box-sizing: border-box;
- border-bottom: 1PX solid #fff;
- }
- }
- }
- .active {
- border-left: 0;
- background: #3395e4;
- color: #fff;
- }
- }
- }
- }
- }
- @media screen and (max-width: 800px) {
- //导航条
- .breadcrumb {
- width: 100%;
- .inner {
- width: 100%;
- padding: 0 20px;
- border-bottom: 2px solid #E5E5E5;
- }
- .el-breadcrumb::v-deep {
- display: inline-block;
- vertical-align: -4px;
- }
- .el-breadcrumb__inner a::v-deep,
- .el-breadcrumb__inner.is-link::v-deep {
- color: #666666;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- span {
- font-family: "宋体";
- font-weight: 400;
- font-size: 28px;
- color: #666666;
- line-height: 80px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .location {
- margin-right: 10px;
- display: inline-block;
- height: 80px;
- line-height: 80px;
- font-family: "宋体";
- font-weight: 400;
- font-size: 28px;
- color: #666666;
- vertical-align: 24px;
- }
- }
- // 资讯列表
- .newsDetail {
- width: 100%;
- margin-bottom: 70px;
- .inner {
- width: 100%;
- font-size: 32px;
- .innerLeft {
- width: 100%;
- margin-top: 20px;
- .leftBottomImg {
- width: 100%;
- text-align: center;
- img {
- width: 96%;
- }
- }
- .leftBottom {
- width: 92%;
- font-size: 40px !important;
- padding-top: 40px;
- margin: 0 auto;
- font-family: "微软雅黑", Microsoft YaHei;
- line-height: 72px;
- h3,
- p {
- width: 100%;
- font-family: "微软雅黑", Microsoft YaHei;
- font-size: 40px;
- color: #333333;
- line-height: 72px;
- padding-bottom: 30px;
- }
- h3 {
- font-weight: 600;
- }
- p {
- font-weight: 400;
- }
- span {
- font-size: 40px !important;
- }
- }
- }
- .innerRight {
- display: none;
- width: 200px;
- margin-top: 20px;
- font-family: "微软雅黑";
- ul {
- li {
- a {
- display: block;
- height: 50px;
- line-height: 50px;
- color: #000;
- background: #f3f3f3;
- font-size: 18px;
- text-decoration: none;
- padding-left: 35px;
- box-sizing: border-box;
- border-bottom: 1px solid #fff;
- }
- }
- }
- .active {
- border-left: 0;
- background: #3395e4;
- color: #fff;
- }
- }
- }
- }
- }
- </style>
|